home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / demos / lmitool / linprog.sci < prev    next >
Text File  |  1999-09-16  |  654b  |  23 lines

  1.  function [x,cout]=linprog(A,b,C,d,c,x0)
  2.  // Generated by lmitool on Thu Feb 02 16:32:14 MET 1995
  3.  Mbound = 1e3;
  4.  abstol = 1e-10;
  5.  nu = 10;
  6.  maxiters = 100;
  7.  reltol = 1.e-10;
  8.  options=[Mbound,abstol,nu,maxiters,reltol];
  9.  /////////////////DO NOT REMOVE THIS LINE
  10.  x_init=x0;
  11.  [nx,nx]=size(A);
  12.  /////////////////DO NOT REMOVE THIS LINE
  13.  XLIST0=list(x_init)
  14.  [XLIST,cout]=lmisolver(XLIST0,linprog_eval,options)
  15.  [x]=XLIST(:)
  16.  /////////////////EVALUATION FUNCTION////////////////////////////
  17.  function [LME,LMI,OBJ]=linprog_eval(XLIST)
  18.  [x]=XLIST(:)
  19.  /////////////////DO NOT REMOVE THIS LINE
  20.  LME=C*x+d
  21.  LMI=vec2list(A*x+b,[ones(nx,1),ones(nx,1)])
  22.  OBJ=c'*x
  23.